home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 23 / CU Amiga - Super CD-ROM 23 (June 1998).iso / CreatingGames / Utilities / C / BoulderEngine / source / ROTATE.C < prev    next >
Encoding:
Text File  |  1998-03-30  |  156 b   |  11 lines

  1. rotate()
  2. {
  3. USHORT r;
  4. r=colortable[2];
  5. colortable[2]=colortable[3];
  6. colortable[3]=colortable[4];
  7. colortable[4]=r;
  8. LoadRGB4(&viewport,colortable,(long)8);
  9. }
  10.  
  11.